home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / AND.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  42 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _AND( nBinNum1, nBinNum2 ) --> nInteger
  8.  
  9. PARAMETERS:
  10.  
  11. nBinNum1 : Binary Number to AND with nBinNum2
  12. nBinNum2 : Binary Number to AND with nBinNum1
  13.  
  14. SHORT:
  15.  
  16. Perform Binary AND operation.
  17.  
  18. DESCRIPTION:
  19.  
  20. _AND() performs a bitwise AND on two binary numbers. The two numbers
  21. are padded to the same number of positions (to a maximum of 8 digits)
  22. before the operation takes place in order to retain positional values:
  23.  
  24. 100101 AND 101    becomes    100101 AND 000101
  25.  
  26. NOTE:
  27.  
  28.  
  29.  
  30. EXAMPLE:
  31.  
  32. t = _AND(1011,11)
  33.  
  34. original 1011    Both params are padded to eight places 00001010
  35. Second     11                                           00000011
  36.                                                         --------
  37. Result:                                                 00000010
  38.  
  39. Result: t = 10 (leading zeros ignored in RETURN())
  40.  
  41. ******************************************************************************/
  42.